home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Zoom 2
/
Zoom - Release 2 (1996)(Active Software)[!].iso
/
utilities
/
comms
/
irc
/
grapevine
/
rexx
/
paste.gvrexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-13
|
246 b
|
13 lines
/* Grapevine Paste from clipboard -- paste.rexx -- Requires CLIP: to be mounted (clip-handler) */
options results
call open(1,'clip:0',r)
do while eof(1)=0
text=readln(1)
if eof(1)=0 then address gv_rexx.01 'say 'text
end
call close(1)
exit